home *** CD-ROM | disk | FTP | other *** search
/ Champak 128 / Vol 128 (Damaged).iso / games / boiler_b.swf / scripts / DefineSprite_319 / frame_1 / DoAction.as
Encoding:
Text File  |  2011-03-26  |  201 b   |  16 lines

  1. function onRelease()
  2. {
  3.    if(pState == 0)
  4.    {
  5.       this.gotoAndStop(2);
  6.       pState = 1;
  7.    }
  8.    else
  9.    {
  10.       this.gotoAndStop(1);
  11.       pState = 0;
  12.    }
  13. }
  14. var pState = 0;
  15. stop();
  16.